| 
                
               | 
              
                
               | 
              
                @@ -5,6 +5,7 @@ from django.utils.translation import ugettext_lazy as _ 
               | 
            
            
            
              | 
                5
               | 
              
                5
               | 
              
                 from django_models_ext import BaseModelMixin, upload_file_path, upload_file_url, upload_path 
               | 
            
            
            
              | 
                6
               | 
              
                6
               | 
              
                 from simditor.fields import RichTextField 
               | 
            
            
            
              | 
                7
               | 
              
                7
               | 
              
                 from shortuuidfield import ShortUUIDField 
               | 
            
            
            
              | 
                
               | 
              
                8
               | 
              
                +from TimeConvert import TimeConvert as tc 
               | 
            
            
            
              | 
                8
               | 
              
                9
               | 
              
                  
               | 
            
            
            
              | 
                9
               | 
              
                10
               | 
              
                 from mch.models import ModelInfo 
               | 
            
            
            
              | 
                10
               | 
              
                11
               | 
              
                  
               | 
            
            
            
            
            
              | 
                
               | 
              
                
               | 
              
                @@ -225,7 +226,7 @@ class MemberActivityInfo(BaseModelMixin): 
               | 
            
            
            
              | 
                225
               | 
              
                226
               | 
              
                             'id': self.pk, 
               | 
            
            
            
              | 
                226
               | 
              
                227
               | 
              
                             'title': self.title, 
               | 
            
            
            
              | 
                227
               | 
              
                228
               | 
              
                             'subtitle': self.subtitle, 
               | 
            
            
            
              | 
                228
               | 
              
                
               | 
              
                -            'date': self.date, 
               | 
            
            
            
              | 
                
               | 
              
                229
               | 
              
                +            'date': tc.local_string(self.date, '%Y-%m-%d'), 
               | 
            
            
            
              | 
                229
               | 
              
                230
               | 
              
                             'location': self.location, 
               | 
            
            
            
              | 
                230
               | 
              
                231
               | 
              
                             'cover_url': self.cover_url, 
               | 
            
            
            
              | 
                231
               | 
              
                232
               | 
              
                             'content_rich_text': self.content_rich_text, 
               |